home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 359 / dice / dice.lzh / lib / string / strdup.c < prev    next >
C/C++ Source or Header  |  1990-04-01  |  198b  |  21 lines

  1.  
  2. /*
  3.  *  STRDUP.C
  4.  */
  5.  
  6. #include <string.h>
  7. #include <stdlib.h>
  8.  
  9. char *
  10. strdup(s)
  11. const char *s;
  12. {
  13.     int len = strlen(s);
  14.     char *d;
  15.  
  16.     if (d = malloc(len + 1))
  17.     strcpy(d, s);
  18.     return(d);
  19. }
  20.  
  21.